/* About Us Page Styles */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/background.png');
    background-size: cover;
    background-position: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.btn-primary, .btn-outline-primary {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.display-4 {
    font-weight: 700;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.6;
}

footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}